home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / doors_1 / ccrc32.zip / READ.ME < prev   
Text File  |  1992-08-13  |  599b  |  16 lines

  1. This file contains two files that are used to calculate a 32-bit CRC for a
  2. string.  CRC.C is the source code file and CRC.H is the header file.  Both
  3. of these compile under Turbo C++ and Borland C++.  Because they don't use
  4. any compiler dependent code, they should compile ok under other compilers.
  5.  
  6. The one and only function that CRC.C provides is as follows:
  7.  
  8. unsigned long crc32(char *s)
  9.  
  10. Where crc32 returns a 32-bit CRC value for the string pointed to by "s".
  11.  
  12. Please note that CRC.C is based on the 32-bit CRC routines contained in the 
  13. public domain Zmodem source code.
  14.  
  15. -Mark
  16.